home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 3.2
/
Ham Radio Version 3.2 (Chestnut CD-ROMs)(1993).ISO
/
tech
/
bd
/
bdlib.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1989-07-20
|
428b
|
36 lines
Unit BDLib; {
---------- }
{$N+}
{$E+}
Interface {
--------- }
Type
MaxStr = String[255];
Var
S : MaxStr;
Function Upper_Case(S : MaxStr) : MaxStr;
Implementation {
-------------- }
Function Upper_Case(S : MaxStr) : MaxStr;
Var
I,J : Integer;
Begin {Upper_Case}
J := Ord(S[0]);
For I := 1 To J Do
S[I] := UpCase(S[I]);
Upper_Case := S;
End; {Upper_Case}
End. {Unit BDLib}